home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML Instance.sea / XML Instance / Required / plugins / HTMLWindow.jar / horst / FloatStackItem.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-03-18  |  436 b   |  12 lines

  1. package horst;
  2.  
  3. class FloatStackItem {
  4.    int width;
  5.    int yEnd;
  6.  
  7.    FloatStackItem(int width, int end) {
  8.       this.width = width;
  9.       this.yEnd = end;
  10.    }
  11. }
  12.